home *** CD-ROM | disk | FTP | other *** search
- VERSION 5.00
- Begin VB.Form frmHidden
- BorderStyle = 1 'Fixed Single
- Caption = "Recovery Wizard"
- ClientHeight = 690
- ClientLeft = -11955
- ClientTop = -11670
- ClientWidth = 2250
- Icon = "frmHidden.frx":0000
- LinkTopic = "Form1"
- MaxButton = 0 'False
- MinButton = 0 'False
- ScaleHeight = 690
- ScaleWidth = 2250
- Attribute VB_Name = "frmHidden"
- Attribute VB_GlobalNameSpace = False
- Attribute VB_Creatable = False
- Attribute VB_PredeclaredId = True
- Attribute VB_Exposed = False
- Option Explicit
- Private bForm As Boolean
- Private Sub Form_Activate()
- Dim xObjects As New clsXceed
- Dim afrmSteps(0 To 4) As Form
- If Not bForm Then
- bForm = True
-
- Set afrmSteps(0) = frmMain
- Set afrmSteps(1) = frmOne
- Set afrmSteps(2) = frmThree
- Set afrmSteps(3) = frmFour
- Set afrmSteps(4) = frmFive
-
- xObjects.PositionLeft = (Screen.Width - frmMain.Width) / 2
- xObjects.PositionTop = (Screen.Height - frmMain.Height) / 2
-
- Dim nStep As Integer
- Dim nInc As Integer
-
- nStep = 0
-
- Do
- nInc = afrmSteps(nStep).ShowForm(xObjects)
- nStep = nStep + nInc
- Loop Until nInc = 0
-
- For nStep = 0 To 4
- Unload afrmSteps(nStep)
- Next nStep
-
- Set xObjects = Nothing
- End If
- End Sub
-